func reflect.funcLayout

7 uses

	reflect (current package)
		makefunc.go#L58: 	_, _, abi := funcLayout(ftyp, nil)
		makefunc.go#L113: 	_, _, abi := funcLayout(ftyp, nil)
		type.go#L3066: func funcLayout(t *funcType, rcvr *rtype) (frametype *rtype, framePool *sync.Pool, abi abiDesc) {
		value.go#L442: 	frametype, framePool, abi := funcLayout(t, rcvrtype)
		value.go#L679: 	_, _, abi := funcLayout(ftyp, nil)
		value.go#L936: 	_, _, valueABI := funcLayout(valueFuncType, nil)
		value.go#L938: 	methodFrameType, methodFramePool, methodABI := funcLayout(valueFuncType, rcvrType)